<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Topics tagged with store address]]></title><description><![CDATA[A list of topics that have been tagged with store address]]></description><link>https://community.secnto.com//tags/store address</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 22:43:06 GMT</lastBuildDate><atom:link href="https://community.secnto.com//tags/store address.rss" rel="self" type="application/rss+xml"/><pubDate>Invalid Date</pubDate><ttl>60</ttl><item><title><![CDATA[Which data type should be used in c++ to store address because address consists of both integers and characters]]></title><description><![CDATA[<p dir="auto">You basically answered your own question. If you need to save something that is a mixture of numbers and characters, I see two obvious choices:</p>
<p dir="auto">You just need it as a text: I would go with a simple <strong>std::string</strong></p>
<p dir="auto">You need the individual elements (e.g. street name, street number): define a custom struct, e.g.</p>
<pre><code>struct Address {
  std::string street_name;
  int house_number = -1;
};
</code></pre>
]]></description><link>https://community.secnto.com//topic/2095/which-data-type-should-be-used-in-c-to-store-address-because-address-consists-of-both-integers-and-characters</link><guid isPermaLink="true">https://community.secnto.com//topic/2095/which-data-type-should-be-used-in-c-to-store-address-because-address-consists-of-both-integers-and-characters</guid><dc:creator><![CDATA[Mohammad Maaz]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>